/************************************************************ File: cholesky_slave.h Description: A program that inputs a matrix from a file and computes the Cholesky decomposition using several processes. Author: Dana Vrajitoru Organization: IUSB Date: August 16, 2002 **************************************************************/ #ifndef CHOLESKY_SLAVE_H #define CHOLESKY_SLAVE_H // The core function that computes the Cholesky decomposition. void Compute_cholesky(int proc_id, int proc_number); #endif